home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group98c.txt / 000123_icon-group-sender _Thu Dec 10 09:31:40 1998.msg < prev    next >
Internet Message Format  |  2000-09-20  |  1KB

  1. Return-Path: <icon-group-sender>
  2. Received: (from root@localhost)
  3.     by baskerville.CS.Arizona.EDU (8.9.1a/8.9.1) id JAA07911
  4.     for icon-group-addresses; Thu, 10 Dec 1998 09:29:57 -0700 (MST)
  5. Message-Id: <199812101629.JAA07911@baskerville.CS.Arizona.EDU>
  6. Date: Wed, 9 Dec 1998 19:04:18 -0700
  7. From: Gregg Townsend <gmt@optima.CS.Arizona.EDU>
  8. To: adams@flexibledoors.co.nz, icon-group@optima.CS.Arizona.EDU
  9. Subject: Re:  Window names
  10. Errors-To: icon-group-errors@optima.CS.Arizona.EDU
  11. Status: RO
  12.  
  13.     From: Michael Adams <adams@flexibledoors.co.nz>
  14.     
  15.     The CopyArea(W1,W2,x1,y1,w,h,x2,y2) function has the ability to copy a
  16.     rectangular area from one window to another, if W1 and W2 are different
  17.     windows. However, I can't find any information on how to name windows...
  18.  
  19. W1 and W2 are data values of type "window".
  20. You'd do something like this:
  21.  
  22.     W1 := WOpen(...)
  23.     W2 := WOpen(...)
  24.         ...
  25.     CopyArea(W1,W2,...)
  26.  
  27. All graphics procedures accept window argument like W1 and W2,
  28. but they're normally omitted when there's only one window open.
  29.  
  30.    ---------------------------------------------------------------------------
  31.    Gregg Townsend              Gould-Simpson Building   gmt@cs.arizona.edu
  32.    Staff Scientist             1040 E. 4th St.          32 13 45N  110 57 16W
  33.    Dept. of Computer Science   PO Box 210077            tel: +1 520 621 4325
  34.    The University of Arizona   Tucson, AZ  85721-0077   fax: +1 520 621 4246
  35.  
  36.  
  37.